/* General Variables and Resets */
:root {
    --primary-color: #4a4e69; /* Deep Purple */
    --secondary-color: #9a8c98; /* Soft Grayish Pink */
    --accent-color: #c9ada7; /* Light Warm Beige */
    --text-color: #222;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Header */
  header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* Transform Container */
  .transform-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
  }
  
  .transform-box {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 1s ease-in-out, box-shadow 1s ease-in-out;
    transform: rotate(0deg);
  }
  
  .transform-box:hover {
    transform: rotate(15deg) scale(1.2) translateX(10px) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  }
  
  .transform-box .content {
    text-align: center;
    color: var(--primary-color);
  }
  
  .transform-box .content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  .transform-box .content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Footer */
  footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    opacity: 0.8;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .transform-box {
      width: 250px;
      height: 250px;
    }
  
    .transform-box .content h2 {
      font-size: 1.5rem;
    }
  
    .transform-box .content p {
      font-size: 0.9rem;
    }
  }
  